home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- * *
- * Definición de algunos tipos para hacer teclear menos. *
- * También esta la macro para usar etiquetas en inline en C. *
- * *
- * *
- ****************************************************************************/
-
- #ifndef __NEWTYPES_H
- #define __NEWTYPES_H
-
- #define WORD unsigned int
- #define LWORD unsigned long
- #define BYTE unsigned char
- #define POINTER *unsigned char
- #define Z(x) }x:asm{ //Macro para usar labels en asm's
-
- #endif